projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9efa6d2
)
(org-table-make-reference): Fix compiler warning
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Tue, 11 Apr 2023 01:33:56 +0000
(21:33 -0400)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Tue, 11 Apr 2023 01:33:56 +0000
(21:33 -0400)
* lisp/org/org-table.el (org-table-make-reference): Don't use `eq` to
compare against literal strings.
lisp/org/org-table.el
patch
|
blob
|
history
diff --git
a/lisp/org/org-table.el
b/lisp/org/org-table.el
index 5116b1127f778922ecd9741abbba7043ff666abd..a38f2a283d79d0f46fcbf52938cc32e56f682c81 100644
(file)
--- a/
lisp/org/org-table.el
+++ b/
lisp/org/org-table.el
@@
-2861,7
+2861,7
@@
list, `literal' is for the format specifier L."
(if lispp
(if (eq lispp 'literal)
elements
- (if (and (eq elements "") (not keep-empty))
+ (if (and (eq
ual
elements "") (not keep-empty))
""
(prin1-to-string
(if numbers (string-to-number elements) elements))))